home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr46 / tpfort18.zip / MAKEFILE < prev    next >
Text File  |  1993-05-31  |  1KB  |  38 lines

  1. #   Just type "MAKE" or "MAKE Everything" to create the demo program.  It
  2. #   needs the TPC compiler the MS Fortran FL compiler and MS LINK on
  3. #   the current path.  For some reason I don't understand, this file doesn't
  4. #   work with Microsoft's NMAKE.
  5.  
  6. Everything:  psample.exe fsample.ldr
  7.     rem Type PSAMPLE to run demo
  8.  
  9. #   type "MAKE Clean" to clean up the directory after the demo
  10.  
  11. Clean:
  12.     erase psample.exe
  13.     erase fsample.tpu
  14.     erase fsample.ldr
  15.     erase fsample.obj
  16.  
  17. #   Generic rules
  18.  
  19. #   Use environment variables PASOPTS and FORTOPTS to set compiler options.
  20. #   Default options:  /Gb - backwards compatibility of 5.1 with 5.0
  21. #                     /FPi- allow coprocessor emulation
  22.  
  23. .for.ldr:
  24.     FL /Gb /FPi87 $(FORTOPTS) $*.FOR calltp.obj /F 4000 /link $(LIBS)
  25.     erase $*.ldr
  26.     rename $*.exe $*.ldr
  27.  
  28. .pas.exe:
  29.     tpc $(PASOPTS) $< /M
  30.  
  31. .pas.tpu:
  32.     tpc $(PASOPTS) $< /M
  33.  
  34. #  Dependencies
  35.  
  36. psample.exe:  psample.pas fsample.pas fortlink.tpu
  37.  
  38. fsample.ldr:  fsample.for calltp.obj